home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 531 b | 31 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_INSPECT3
-
- creation make
-
- feature
-
- make is
- do
- attribute := '1';
- inspect
- foo
- when '2' then io.put_string("Impossible%N")
- when '3' then io.put_string("Impossible aussi%N")
- else
- end
- end;
-
- feature {NONE}
-
- attribute: CHARACTER;
-
- foo: like attribute is
- do
- Result := attribute;
- end;
-
- end -- class TEST_INSPECT3
-